* lisp/emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 23 Feb 2011 15:22:28 +0000 (10:22 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 23 Feb 2011 15:22:28 +0000 (10:22 -0500)
etc/NEWS
lib-src/ChangeLog
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el
lisp/international/ja-dic-cnv.el
lisp/international/titdic-cnv.el

index 217f5ab1d7062dd956bca9e40b6b1041f17bb8ab..cfb788940d06563f71069e892a4bfab6677aabd9 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -712,6 +712,7 @@ sc.el, x-menu.el, rnews.el, rnewspost.el
 \f
 * Lisp changes in Emacs 24.1
 
+** byte-compile-disable-print-circle is obsolete.
 ** Removed the stack-trace-on-error variable.
 Also the debugger can now "continue" from an error, which means it will jump
 to the error handler as if the debugger had not been invoked instead of
index 97a3ad510a891f113a921f0ea4e73f67989f3276..64b0bdafa0fb636df8543b93bf480ddcfde161ba 100644 (file)
        autoconf, not cpp.
        (ALL_CFLAGS): Use them as make variables.
 
-2010-04-07  Christoph  <cschol2112@googlemail.com>  (tiny change)
+2010-04-07  Christoph Scholtes  <cschol2112@googlemail.com>
 
        * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
        for macros for nmake compatibility.
index ae5f4df9eeac82fe70aa66bbe44d6a5012e8ab0f..c2aa0bc875597212409987832eccdc4da1a9023f 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
+
 2011-02-23  Kenichi Handa  <handa@m17n.org>
 
        * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an
        * htmlfontify.el (hfy-face-attr-for-class): Use append instead
        of nconc to avoid pure storage error (Bug#6239).
 
-2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
+2010-06-27  Christoph Scholtes  <cschol2112@googlemail.com>
 
        * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
        (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
 
        * ido.el (ido-file-internal): Fix 2009-12-02 change.
 
-2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
+2010-04-19  Christoph Scholtes  <cschol2112@googlemail.com>
 
        * progmodes/grep.el (grep-compute-defaults): Fix handling of host
        default settings (Bug#5928).
index 199927d536ed262c94b4b8dc5289a3db79d38ec8..2f113dfb4795c518556ace470dd928823264ac1e 100644 (file)
@@ -227,6 +227,7 @@ the functions you loaded will not be able to run.")
 
 (defvar byte-compile-disable-print-circle nil
   "If non-nil, disable `print-circle' on printing a byte-compiled code.")
+(make-obsolete-variable 'byte-compile-disable-print-circle nil "24.1")
 ;;;###autoload(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
 
 (defcustom byte-compile-dynamic-docstrings t
index 7e317ea09c018158c7de3fdf9b9f5a2ad398927a..c0fcf19d8414cf1ee9697e191180ada2d16326f0 100644 (file)
@@ -337,7 +337,7 @@ The name of generated file is specified by the variable `ja-dic-filename'."
       (erase-buffer)
       (buffer-disable-undo)
       (insert ";;; ja-dic.el --- dictionary for Japanese input method"
-             " -*-coding: euc-japan; byte-compile-disable-print-circle:t; -*-\n"
+             " -*-coding: euc-japan; -*-\n"
              ";;\tGenerated by the command `skkdic-convert'\n"
              ";;\tDate: " (current-time-string) "\n"
              ";;\tOriginal SKK dictionary file: "
index 935d66c613b0288945876126fbbc90d73acec1ef..e68dc8bdc173d3fb357e3afbe6f0cb24fae783eb 100644 (file)
@@ -272,8 +272,7 @@ SPC, 6, 3, 4, or 7 specifing a tone (SPC:\e$(0?v(N\e(B, 6:\e$(0Dm(N\e(B, 3:\e$(0&9Vy\e
 
     (princ ";; Quail package `")
     (princ package)
-    (princ (format "' -*- coding:%s; " coding-system-for-write))
-    (princ "byte-compile-disable-print-circle:t; -*-\n")
+    (princ (format "' -*- coding:%s -*-\n" coding-system-for-write))
     (princ ";;   Generated by the command `titdic-convert'\n;;\tDate: ")
     (princ (current-time-string))
     (princ "\n;;\tOriginal TIT dictionary file: ")
@@ -1154,8 +1153,8 @@ the generated Quail package is saved."
        (setq coding-system-for-write
              (coding-system-change-eol-conversion coding 'unix))
        (with-temp-file (expand-file-name quailfile dirname)
-         (insert (format ";; Quail package `%s' -*- coding:%s; " name coding))
-         (insert "byte-compile-disable-print-circle:t; -*-\n")
+         (insert (format ";; Quail package `%s' -*- coding:%s -*-\n"
+                          name coding))
          (insert ";;   Generated by the command `miscdic-convert'\n")
          (insert ";;   Date: " (current-time-string) "\n")
          (insert ";;   Source dictionary file: " dicfile "\n")